home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / qbbs / qmx_120.zip / R_ACCESS.QMX < prev    next >
Text File  |  1990-01-27  |  681b  |  34 lines

  1. Peter Janssens method of using QMX 1.04 with "RemoteAccess" BBS software:
  2.  
  3.  
  4. I call QMX from the BBS with a type 7.
  5. Optionline to call QMX is:
  6.  
  7. *C /C C:\Ra\Misc\Qmx.Bat *N *! *H *M
  8.  
  9.     *N = nodenumber
  10.     *! = do    not subtract time spent in QMX from user's time
  11.     *H = leave fossil hot
  12.     *M = Swap RA to disk thus leaving only 20Kb in memory
  13.  
  14.  
  15. Here's my batchfile to fire up QMX from RA:
  16.  
  17. <start>
  18. Set TCNODE=%1
  19. If Not %1==1 Goto Otherline
  20. Cd\Msgbase
  21. Copy \Ra\ExitInfo.BBS
  22. Copy \Ra\DorInfo1.Def
  23. Qmx
  24. Cd\Ra\Line1
  25. Goto Exit
  26. :Otherline
  27. Cd\Msgbase
  28. Copy \Ra\Line%1\ExitInfo.BBS Exitinf%1.BBS
  29. Copy \Ra\Line%1\DorInfo1.Def DorInfo%1.Def
  30. Qmx
  31. Cd\Ra\Line%1
  32. :Exit
  33. <end>
  34.